home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / gdiff-2.2 / diff3.c < prev    next >
C/C++ Source or Header  |  1995-05-03  |  46KB  |  1,680 lines

  1. /* Three way file comparison program (diff3) for Project GNU.
  2.    Copyright (C) 1988, 1989, 1992 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by Randy Smith */
  19.  
  20. #if __STDC__
  21. #define VOID void
  22. #else
  23. #define VOID char
  24. #endif
  25.  
  26. #include <stdio.h>
  27. #include <ctype.h>
  28. #include "getopt.h"
  29. #include "system.h"
  30.  
  31. /*
  32.  * Internal data structures and macros for the diff3 program; includes
  33.  * data structures for both diff3 diffs and normal diffs.
  34.  */
  35.  
  36. /* Different files within a three way diff.  */
  37. #define    FILE0    0
  38. #define    FILE1    1
  39. #define    FILE2    2
  40.  
  41. /*
  42.  * A three way diff is built from two two-way diffs; the file which
  43.  * the two two-way diffs share is:
  44.  */
  45. #define    FILEC    FILE2
  46.  
  47. /*
  48.  * Different files within a two way diff.
  49.  * FC is the common file, FO the other file.
  50.  */
  51. #define FO 0
  52. #define FC 1
  53.  
  54. /* The ranges are indexed by */
  55. #define    START    0
  56. #define    END    1
  57.  
  58. enum diff_type {
  59.   ERROR,            /* Should not be used */
  60.   ADD,                /* Two way diff add */
  61.   CHANGE,            /* Two way diff change */
  62.   DELETE,            /* Two way diff delete */
  63.   DIFF_ALL,            /* All three are different */
  64.   DIFF_1ST,            /* Only the first is different */
  65.   DIFF_2ND,            /* Only the second */
  66.   DIFF_3RD            /* Only the third */
  67. };
  68.  
  69. /* Two way diff */
  70. struct diff_block {
  71.   int ranges[2][2];        /* Ranges are inclusive */
  72.   char **lines[2];        /* The actual lines (may contain nulls) */
  73.   int *lengths[2];        /* Line lengths (including newlines, if any) */
  74.   struct diff_block *next;
  75. };
  76.  
  77. /* Three way diff */
  78.  
  79. struct diff3_block {
  80.   enum diff_type correspond;    /* Type of diff */
  81.   int ranges[3][2];        /* Ranges are inclusive */
  82.   char **lines[3];        /* The actual lines (may contain nulls) */
  83.   int *lengths[3];        /* Line lengths (including newlines, if any) */
  84.   struct diff3_block *next;
  85. };
  86.  
  87. /*
  88.  * Access the ranges on a diff block.
  89.  */
  90. #define    D_LOWLINE(diff, filenum)    \
  91.   ((diff)->ranges[filenum][START])
  92. #define    D_HIGHLINE(diff, filenum)    \
  93.   ((diff)->ranges[filenum][END])
  94. #define    D_NUMLINES(diff, filenum)    \
  95.   (D_HIGHLINE (diff, filenum) - D_LOWLINE (diff, filenum) + 1)
  96.  
  97. /*
  98.  * Access the line numbers in a file in a diff by relative line
  99.  * numbers (i.e. line number within the diff itself).  Note that these
  100.  * are lvalues and can be used for assignment.
  101.  */
  102. #define    D_RELNUM(diff, filenum, linenum)    \
  103.   ((diff)->lines[filenum][linenum])
  104. #define    D_RELLEN(diff, filenum, linenum)    \
  105.   ((diff)->lengths[filenum][linenum])
  106.  
  107. /*
  108.  * And get at them directly, when that should be necessary.
  109.  */
  110. #define    D_LINEARRAY(diff, filenum)    \
  111.   ((diff)->lines[filenum])
  112. #define    D_LENARRAY(diff, filenum)    \
  113.   ((diff)->lengths[filenum])
  114.  
  115. /*
  116.  * Next block.
  117.  */
  118. #define    D_NEXT(diff)    ((diff)->next)
  119.  
  120. /*
  121.  * Access the type of a diff3 block.
  122.  */
  123. #define    D3_TYPE(diff)    ((diff)->correspond)
  124.  
  125. /*
  126.  * Line mappings based on diffs.  The first maps off the top of the
  127.  * diff, the second off of the bottom.
  128.  */
  129. #define    D_HIGH_MAPLINE(diff, fromfile, tofile, lineno)    \
  130.   ((lineno)                        \
  131.    - D_HIGHLINE ((diff), (fromfile))            \
  132.    + D_HIGHLINE ((diff), (tofile)))
  133.  
  134. #define    D_LOW_MAPLINE(diff, fromfile, tofile, lineno)    \
  135.   ((lineno)                        \
  136.    - D_LOWLINE ((diff), (fromfile))            \
  137.    + D_LOWLINE ((diff), (tofile)))
  138.  
  139. /*
  140.  * General memory allocation function.
  141.  */
  142. #define    ALLOCATE(number, type)    \
  143.   (type *) xmalloc ((number) * sizeof (type))
  144.  
  145. /* Options variables for flags set on command line.  */
  146.  
  147. /* If nonzero, treat all files as text files, never as binary.  */
  148. static int always_text;
  149.  
  150. /* If nonzero, write out an ed script instead of the standard diff3 format.  */
  151. static int edscript;
  152.  
  153. /* If nonzero, in the case of overlapping diffs (type DIFF_ALL),
  154.    preserve the lines which would normally be deleted from
  155.    file 1 with a special flagging mechanism.  */
  156. static int flagging;
  157.  
  158. /* If nonzero, do not output information for overlapping diffs.  */
  159. static int simple_only;
  160.  
  161. /* If nonzero, do not output information for non-overlapping diffs.  */
  162. static int overlap_only;
  163.  
  164. /* If nonzero, show information for DIFF_2ND diffs.  */
  165. static int show_2nd;
  166.  
  167. /* If nonzero, include `:wq' at the end of the script
  168.    to write out the file being edited.   */
  169. static int finalwrite;
  170.  
  171. /* If nonzero, output a merged file.  */
  172. static int merge;
  173.  
  174. static char *argv0;
  175.  
  176. /*
  177.  * Forward function declarations.
  178.  */
  179. static int myread ();
  180. static void fatal ();
  181. static void perror_with_exit ();
  182. static struct diff_block *process_diff ();
  183. static struct diff3_block *make_3way_diff ();
  184. static void output_diff3 ();
  185. static int output_diff3_edscript ();
  186. static int output_diff3_merge ();
  187. static void usage ();
  188.  
  189. static struct diff3_block *using_to_diff3_block ();
  190. static int copy_stringlist ();
  191. static struct diff3_block *create_diff3_block ();
  192. static int compare_line_list ();
  193.  
  194. static char *read_diff ();
  195. static enum diff_type process_diff_control ();
  196. static char *scan_diff_line ();
  197.  
  198. static struct diff3_block *reverse_diff3_blocklist ();
  199.  
  200. VOID *xmalloc ();
  201. static VOID *xrealloc ();
  202.  
  203. static char diff_program[] = DIFF_PROGRAM;
  204.  
  205. static struct option longopts[] =
  206. {
  207.   {"text", 0, NULL, 'a'},
  208.   {"show-all", 0, NULL, 'A'},
  209.   {"ed", 0, NULL, 'e'},
  210.   {"show-overlap", 0, NULL, 'E'},
  211.   {"label", 1, NULL, 'L'},
  212.   {"merge", 0, NULL, 'm'},
  213.   {"overlap-only", 0, NULL, 'x'},
  214.   {"easy-only", 0, NULL, '3'},
  215.   {"version", 0, NULL, 'v'},
  216.   {0, 0, 0, 0}
  217. };
  218.  
  219. /*
  220.  * Main program.  Calls diff twice on two pairs of input files,
  221.  * combines the two diffs, and outputs them.
  222.  */
  223. int
  224. main (argc, argv)
  225.      int argc;
  226.      char **argv;
  227. {
  228.   extern char *version_string;
  229.   int c, i;
  230.   int mapping[3];
  231.   int rev_mapping[3];
  232.   int incompat;
  233.   int conflicts_found;
  234.   struct diff_block *thread0, *thread1;
  235.   struct diff3_block *diff3;
  236.   int tag_count = 0;
  237.   char *tag_strings[3];
  238.   extern char *optarg;
  239.   char *commonname;
  240.   char **file;
  241.   struct stat statb;
  242.  
  243.   incompat = 0;
  244.  
  245.   argv0 = argv[0];
  246.  
  247.   while ((c = getopt_long (argc, argv, "aeimvx3AEXL:", longopts, (int *) 0))
  248.      != EOF)
  249.     {
  250.       switch (c)
  251.     {
  252.     case 'a':
  253.       always_text = 1;
  254.       break;
  255.     case 'A':
  256.       show_2nd = 1;
  257.       flagging = 1;
  258.       incompat++;
  259.       break;
  260.     case 'x':
  261.       overlap_only = 1;
  262.       incompat++;
  263.       break;
  264.     case '3':
  265.       simple_only = 1;
  266.       incompat++;
  267.       break;
  268.     case 'i':
  269.       finalwrite = 1;
  270.       break;
  271.     case 'm':
  272.       merge = 1;
  273.       break;
  274.     case 'X':
  275.       overlap_only = 1;
  276.       /* Falls through */
  277.     case 'E':
  278.       flagging = 1;
  279.       /* Falls through */
  280.     case 'e':
  281.       incompat++;
  282.       break;
  283.     case 'v':
  284.       fprintf (stderr, "GNU diff3 version %s\n", version_string);
  285.       break;
  286.     case 'L':
  287.       /* Handle up to three -L options.  */
  288.       if (tag_count < 3)
  289.         {
  290.           tag_strings[tag_count++] = optarg;
  291.           break;
  292.         }
  293.       /* Falls through */
  294.     default:
  295.       usage ();
  296.       /* NOTREACHED */
  297.     }
  298.     }
  299.  
  300.   edscript = incompat & ~merge;  /* -AeExX3 without -m implies ed script.  */
  301.   show_2nd |= ~incompat & merge;  /* -m without -AeExX3 implies -A.  */
  302.   flagging |= ~incompat & merge;
  303.  
  304.   if (incompat > 1  /* Ensure at most one of -AeExX3.  */
  305.       || finalwrite & merge /* -i -m would rewrite input file.  */
  306.       || (tag_count && ! flagging) /* -L requires one of -AEX.  */
  307.       || argc - optind != 3)
  308.     usage ();
  309.  
  310.   file = &argv[optind];
  311.  
  312.   for (i = tag_count; i < 3; i++)
  313.     tag_strings[i] = file[i];
  314.  
  315.   /* Always compare file1 to file2, even if file2 is "-".
  316.      This is needed for -mAeExX3.  Using the file0 as
  317.      the common file would produce wrong results, because if the
  318.      file0-file1 diffs didn't line up with the file0-file2 diffs
  319.      (which is entirely possible since we don't use diff's -n option),
  320.      diff3 might report phantom changes from file1 to file2.  */
  321.  
  322.   if (strcmp (file[2], "-") == 0)
  323.     {
  324.       /* Sigh.  We've got standard input as the last arg.  We can't
  325.      call diff twice on stdin.  Use the middle arg as the common
  326.      file instead.  */
  327.       if (strcmp (file[0], "-") == 0 || strcmp (file[1], "-") == 0)
  328.     fatal ("`-' specified for more than one input file");
  329.       mapping[0] = 0;
  330.       mapping[1] = 2;
  331.       mapping[2] = 1;
  332.     }
  333.   else
  334.     {
  335.       /* Normal, what you'd expect */
  336.       mapping[0] = 0;
  337.       mapping[1] = 1;
  338.       mapping[2] = 2;
  339.     }
  340.  
  341.   for (i = 0; i < 3; i++)
  342.     rev_mapping[mapping[i]] = i;
  343.  
  344.   for (i = 0; i < 3; i++)
  345.     if (strcmp (file[i], "-") != 0)
  346.       if (stat (file[i], &statb) < 0)
  347.     perror_with_exit (file[i]);
  348.       else if (S_ISDIR(statb.st_mode))
  349.     {
  350.       fprintf (stderr, "%s: %s: Is a directory\n", argv0, file[i]);
  351.       exit (2);
  352.     }
  353.  
  354.  
  355.   commonname = file[rev_mapping[FILEC]];
  356.   thread0 = process_diff (file[rev_mapping[FILE0]], commonname);
  357.   thread1 = process_diff (file[rev_mapping[FILE1]], commonname);
  358.   diff3 = make_3way_diff (thread0, thread1);
  359.   if (edscript)
  360.     conflicts_found
  361.       = output_diff3_edscript (stdout, diff3, mapping, rev_mapping,
  362.                    tag_strings[0], tag_strings[1], tag_strings[2]);
  363.   else if (merge)
  364.     {
  365.       if (! freopen (file[rev_mapping[FILE0]], "r", stdin))
  366.     perror_with_exit (file[rev_mapping[FILE0]]);
  367.       conflicts_found
  368.     = output_diff3_merge (stdin, stdout, diff3, mapping, rev_mapping,
  369.                   tag_strings[0], tag_strings[1], tag_strings[2]);
  370.       if (ferror (stdin))
  371.     fatal ("read error");
  372.     }
  373.   else
  374.     {
  375.       output_diff3 (stdout, diff3, mapping, rev_mapping);
  376.       conflicts_found = 0;
  377.     }
  378.  
  379.   if (ferror (stdout) || fclose (stdout) != 0)
  380.     fatal ("write error");
  381.   exit (conflicts_found);
  382.   return conflicts_found;
  383. }
  384.  
  385. /*
  386.  * Explain, patiently and kindly, how to use this program.  Then exit.
  387.  */
  388. static void
  389. usage ()
  390. {
  391.   fprintf (stderr, "\
  392. Usage: %s [options] my-file older-file your-file\n\
  393. Options:\n\
  394.        [-exAEX3v] [-i|-m] [-L label1 [-L label2 [-L label3]]] [--text] [--ed]\n\
  395.        [--merge] [--show-all] [--show-overlap] [--overlap-only] [--easy-only]\n\
  396.        [--label=label1 [--label=label2 [--label=label3]]] [--version]\n\
  397.        Only one of [exAEX3] is allowed\n", argv0);
  398.   exit (2);
  399. }
  400.  
  401. /*
  402.  * Routines that combine the two diffs together into one.  The
  403.  * algorithm used follows:
  404.  *
  405.  *   File2 is shared in common between the two diffs.
  406.  *   Diff02 is the diff between 0 and 2.
  407.  *   Diff12 is the diff between 1 and 2.
  408.  *
  409.  *    1) Find the range for the first block in File2.
  410.  *        a) Take the lowest of the two ranges (in File2) in the two
  411.  *           current blocks (one from each diff) as being the low
  412.  *           water mark.  Assign the upper end of this block as
  413.  *           being the high water mark and move the current block up
  414.  *           one.  Mark the block just moved over as to be used.
  415.  *        b) Check the next block in the diff that the high water
  416.  *           mark is *not* from.
  417.  *
  418.  *           *If* the high water mark is above
  419.  *           the low end of the range in that block,
  420.  *
  421.  *           mark that block as to be used and move the current
  422.  *           block up.  Set the high water mark to the max of
  423.  *           the high end of this block and the current.  Repeat b.
  424.  *
  425.  *     2) Find the corresponding ranges in File0 (from the blocks
  426.  *        in diff02; line per line outside of diffs) and in File1.
  427.  *        Create a diff3_block, reserving space as indicated by the ranges.
  428.  *
  429.  *     3) Copy all of the pointers for file2 in.  At least for now,
  430.  *        do bcmp's between corresponding strings in the two diffs.
  431.  *
  432.  *     4) Copy all of the pointers for file0 and 1 in.  Get what you
  433.  *        need from file2 (when there isn't a diff block, it's
  434.  *        identical to file2 within the range between diff blocks).
  435.  *
  436.  *     5) If the diff blocks you used came from only one of the two
  437.  *        strings of diffs, then that file (i.e. the one other than
  438.  *        the common file in that diff) is the odd person out.  If you used
  439.  *        diff blocks from both sets, check to see if files 0 and 1 match:
  440.  *
  441.  *        Same number of lines?  If so, do a set of bcmp's (if a
  442.  *        bcmp matches; copy the pointer over; it'll be easier later
  443.  *        if you have to do any compares).  If they match, 0 & 1 are
  444.  *        the same.  If not, all three different.
  445.  *
  446.  *   Then you do it again, until you run out of blocks.
  447.  *
  448.  */
  449.  
  450. /*
  451.  * This routine makes a three way diff (chain of diff3_block's) from two
  452.  * two way diffs (chains of diff_block's).  It is assumed that each of
  453.  * the two diffs passed are onto the same file (i.e. that each of the
  454.  * diffs were made "to" the same file).  The three way diff pointer
  455.  * returned will have numbering FILE0--the other file in diff02,
  456.  * FILE1--the other file in diff12, and FILEC--the common file.
  457.  */
  458. static struct diff3_block *
  459. make_3way_diff (thread0, thread1)
  460.      struct diff_block *thread0, *thread1;
  461. {
  462. /*
  463.  * This routine works on the two diffs passed to it as threads.
  464.  * Thread number 0 is diff02, thread number 1 is diff12.  The USING
  465.  * array is set to the base of the list of blocks to be used to
  466.  * construct each block of the three way diff; if no blocks from a
  467.  * particular thread are to be used, that element of the using array
  468.  * is set to 0.  The elements LAST_USING array are set to the last
  469.  * elements on each of the using lists.
  470.  *
  471.  * The HIGH_WATER_MARK is set to the highest line number in the common file
  472.  * described in any of the diffs in either of the USING lists.  The
  473.  * HIGH_WATER_THREAD names the thread.  Similarly the BASE_WATER_MARK
  474.  * and BASE_WATER_THREAD describe the lowest line number in the common file
  475.  * described in any of the diffs in either of the USING lists.  The
  476.  * HIGH_WATER_DIFF is the diff from which the HIGH_WATER_MARK was
  477.  * taken.
  478.  *
  479.  * The HIGH_WATER_DIFF should always be equal to LAST_USING
  480.  * [HIGH_WATER_THREAD].  The OTHER_DIFF is the next diff to check for
  481.  * higher water, and should always be equal to
  482.  * CURRENT[HIGH_WATER_THREAD ^ 0x1].  The OTHER_THREAD is the thread
  483.  * in which the OTHER_DIFF is, and hence should always be equal to
  484.  * HIGH_WATER_THREAD ^ 0x1.
  485.  *
  486.  * The variable LAST_DIFF is kept set to the last diff block produced
  487.  * by this routine, for line correspondence purposes between that diff
  488.  * and the one currently being worked on.  It is initialized to
  489.  * ZERO_DIFF before any blocks have been created.
  490.  */
  491.  
  492.   struct diff_block
  493.     *using[2],
  494.     *last_using[2],
  495.     *current[2];
  496.  
  497.   int
  498.     high_water_mark;
  499.  
  500.   int
  501.     high_water_thread,
  502.     base_water_thread,
  503.     other_thread;
  504.  
  505.   struct diff_block
  506.     *high_water_diff,
  507.     *other_diff;
  508.  
  509.   struct diff3_block
  510.     *result,
  511.     *tmpblock,
  512.     **result_end,
  513.     *last_diff3;
  514.  
  515.   static struct diff3_block zero_diff3 = {
  516.       ERROR,
  517.       { {0, 0}, {0, 0}, {0, 0} },
  518.       { (char **) 0, (char **) 0, (char **) 0 },
  519.       { (int *) 0, (int *) 0, (int *) 0 },
  520.       (struct diff3_block *) 0
  521.       };
  522.  
  523.   /* Initialization */
  524.   result = 0;
  525.   result_end = &result;
  526.   current[0] = thread0; current[1] = thread1;
  527.   last_diff3 = &zero_diff3;
  528.  
  529.   /* Sniff up the threads until we reach the end */
  530.  
  531.   while (current[0] || current[1])
  532.     {
  533.       using[0] = using[1] = last_using[0] = last_using[1] =
  534.     (struct diff_block *) 0;
  535.  
  536.       /* Setup low and high water threads, diffs, and marks.  */
  537.       if (!current[0])
  538.     base_water_thread = 1;
  539.       else if (!current[1])
  540.     base_water_thread = 0;
  541.       else
  542.     base_water_thread =
  543.       (D_LOWLINE (current[0], FC) > D_LOWLINE (current[1], FC));
  544.  
  545.       high_water_thread = base_water_thread;
  546.  
  547.       high_water_diff = current[high_water_thread];
  548.  
  549. #if 0
  550.       /* low and high waters start off same diff */
  551.       base_water_mark = D_LOWLINE (high_water_diff, FC);
  552. #endif
  553.  
  554.       high_water_mark = D_HIGHLINE (high_water_diff, FC);
  555.  
  556.       /* Make the diff you just got info from into the using class */
  557.       using[high_water_thread]
  558.     = last_using[high_water_thread]
  559.     = high_water_diff;
  560.       current[high_water_thread] = high_water_diff->next;
  561.       last_using[high_water_thread]->next
  562.     = (struct diff_block *) 0;
  563.  
  564.       /* And mark the other diff */
  565.       other_thread = high_water_thread ^ 0x1;
  566.       other_diff = current[other_thread];
  567.  
  568.       /* Shuffle up the ladder, checking the other diff to see if it
  569.      needs to be incorporated.  */
  570.       while (other_diff
  571.          && D_LOWLINE (other_diff, FC) <= high_water_mark + 1)
  572.     {
  573.  
  574.       /* Incorporate this diff into the using list.  Note that
  575.          this doesn't take it off the current list */
  576.       if (using[other_thread])
  577.         last_using[other_thread]->next = other_diff;
  578.       else
  579.         using[other_thread] = other_diff;
  580.       last_using[other_thread] = other_diff;
  581.  
  582.       /* Take it off the current list.  Note that this following
  583.          code assumes that other_diff enters it equal to
  584.          current[high_water_thread ^ 0x1] */
  585.       current[other_thread]
  586.         = current[other_thread]->next;
  587.       other_diff->next
  588.         = (struct diff_block *) 0;
  589.  
  590.       /* Set the high_water stuff
  591.          If this comparison is equal, then this is the last pass
  592.          through this loop; since diff blocks within a given
  593.          thread cannot overlap, the high_water_mark will be
  594.          *below* the range_start of either of the next diffs.  */
  595.  
  596.       if (high_water_mark < D_HIGHLINE (other_diff, FC))
  597.         {
  598.           high_water_thread ^= 1;
  599.           high_water_diff = other_diff;
  600.           high_water_mark = D_HIGHLINE (other_diff, FC);
  601.         }
  602.  
  603.       /* Set the other diff */
  604.       other_thread = high_water_thread ^ 0x1;
  605.       other_diff = current[other_thread];
  606.     }
  607.  
  608.       /* The using lists contain a list of all of the blocks to be
  609.      included in this diff3_block.  Create it.  */
  610.  
  611.       tmpblock = using_to_diff3_block (using, last_using,
  612.                        base_water_thread, high_water_thread,
  613.                        last_diff3);
  614.  
  615.       if (!tmpblock)
  616.     fatal ("internal error: screwup in format of diff blocks");
  617.  
  618.       /* Put it on the list.  */
  619.       *result_end = tmpblock;
  620.       result_end = &tmpblock->next;
  621.  
  622.       /* Set up corresponding lines correctly.  */
  623.       last_diff3 = tmpblock;
  624.     }
  625.   return result;
  626. }
  627.  
  628. /*
  629.  * using_to_diff3_block:
  630.  *   This routine takes two lists of blocks (from two separate diff
  631.  * threads) and puts them together into one diff3 block.
  632.  * It then returns a pointer to this diff3 block or 0 for failure.
  633.  *
  634.  * All arguments besides using are for the convenience of the routine;
  635.  * they could be derived from the using array.
  636.  * LAST_USING is a pair of pointers to the last blocks in the using
  637.  * structure.
  638.  * LOW_THREAD and HIGH_THREAD tell which threads contain the lowest
  639.  * and highest line numbers for File0.
  640.  * last_diff3 contains the last diff produced in the calling routine.
  641.  * This is used for lines mappings which would still be identical to
  642.  * the state that diff ended in.
  643.  *
  644.  * A distinction should be made in this routine between the two diffs
  645.  * that are part of a normal two diff block, and the three diffs that
  646.  * are part of a diff3_block.
  647.  */
  648. static struct diff3_block *
  649. using_to_diff3_block (using, last_using, low_thread, high_thread, last_diff3)
  650.      struct diff_block
  651.        *using[2],
  652.        *last_using[2];
  653.      int low_thread, high_thread;
  654.      struct diff3_block *last_diff3;
  655. {
  656.   int low[2], high[2];
  657.   struct diff3_block *result;
  658.   struct diff_block *ptr;
  659.   int d, i;
  660.  
  661.   /* Find the range in the common file.  */
  662.   int lowc = D_LOWLINE (using[low_thread], FC);
  663.   int highc = D_HIGHLINE (last_using[high_thread], FC);
  664.  
  665.   /* Find the ranges in the other files.
  666.      If using[d] is null, that means that the file to which that diff
  667.      refers is equivalent to the common file over this range.  */
  668.  
  669.   for (d = 0; d < 2; d++)
  670.     if (using[d])
  671.       {
  672.     low[d] = D_LOW_MAPLINE (using[d], FC, FO, lowc);
  673.     high[d] = D_HIGH_MAPLINE (last_using[d], FC, FO, highc);
  674.       }
  675.     else
  676.       {
  677.     low[d] = D_HIGH_MAPLINE (last_diff3, FILEC, FILE0 + d, lowc);
  678.     high[d] = D_HIGH_MAPLINE (last_diff3, FILEC, FILE0 + d, highc);
  679.       }
  680.  
  681.   /* Create a block with the appropriate sizes */
  682.   result = create_diff3_block (low[0], high[0], low[1], high[1], lowc, highc);
  683.  
  684.   /* Copy information for the common file.
  685.      Return with a zero if any of the compares failed.  */
  686.  
  687.   for (d = 0; d < 2; d++)
  688.     for (ptr = using[d]; ptr; ptr = D_NEXT (ptr))
  689.       {
  690.     int result_offset = D_LOWLINE (ptr, FC) - lowc;
  691.  
  692.     if (!copy_stringlist (D_LINEARRAY (ptr, FC),
  693.                   D_LENARRAY (ptr, FC),
  694.                   D_LINEARRAY (result, FILEC) + result_offset,
  695.                   D_LENARRAY (result, FILEC) + result_offset,
  696.                   D_NUMLINES (ptr, FC)))
  697.       return 0;
  698.       }
  699.  
  700.   /* Copy information for file d.  First deal with anything that might be
  701.      before the first diff.  */
  702.  
  703.   for (d = 0; d < 2; d++)
  704.     {
  705.       struct diff_block *u = using[d];
  706.       int lo = low[d], hi = high[d];
  707.  
  708.       for (i = 0;
  709.        i + lo < (u ? D_LOWLINE (u, FO) : hi + 1);
  710.        i++)
  711.     {
  712.       D_RELNUM (result, FILE0 + d, i) = D_RELNUM (result, FILEC, i);
  713.       D_RELLEN (result, FILE0 + d, i) = D_RELLEN (result, FILEC, i);
  714.     }
  715.  
  716.       for (ptr = u; ptr; ptr = D_NEXT (ptr))
  717.     {
  718.       int result_offset = D_LOWLINE (ptr, FO) - lo;
  719.       int linec;
  720.  
  721.       if (!copy_stringlist (D_LINEARRAY (ptr, FO),
  722.                 D_LENARRAY (ptr, FO),
  723.                 D_LINEARRAY (result, FILE0 + d) + result_offset,
  724.                 D_LENARRAY (result, FILE0 + d) + result_offset,
  725.                 D_NUMLINES (ptr, FO)))
  726.         return 0;
  727.  
  728.       /* Catch the lines between here and the next diff */
  729.       linec = D_HIGHLINE (ptr, FC) + 1 - lowc;
  730.       for (i = D_HIGHLINE (ptr, FO) + 1 - lo;
  731.            i < (D_NEXT (ptr) ? D_LOWLINE (D_NEXT (ptr), FO) : hi + 1) - lo;
  732.            i++)
  733.         {
  734.           D_RELNUM (result, FILE0 + d, i) = D_RELNUM (result, FILEC, linec);
  735.           D_RELLEN (result, FILE0 + d, i) = D_RELLEN (result, FILEC, linec);
  736.           linec++;
  737.         }
  738.     }
  739.     }
  740.  
  741.   /* Set correspond */
  742.   if (!using[0])
  743.     D3_TYPE (result) = DIFF_2ND;
  744.   else if (!using[1])
  745.     D3_TYPE (result) = DIFF_1ST;
  746.   else
  747.     {
  748.       int nl0 = D_NUMLINES (result, FILE0);
  749.       int nl1 = D_NUMLINES (result, FILE1);
  750.  
  751.       if (nl0 != nl1
  752.       || !compare_line_list (D_LINEARRAY (result, FILE0),
  753.                  D_LENARRAY (result, FILE0),
  754.                  D_LINEARRAY (result, FILE1),
  755.                  D_LENARRAY (result, FILE1),
  756.                  nl0))
  757.     D3_TYPE (result) = DIFF_ALL;
  758.       else
  759.     D3_TYPE (result) = DIFF_3RD;
  760.     }
  761.  
  762.   return result;
  763. }
  764.  
  765. /*
  766.  * This routine copies pointers from a list of strings to a different list
  767.  * of strings.  If a spot in the second list is already filled, it
  768.  * makes sure that it is filled with the same string; if not it
  769.  * returns 0, the copy incomplete.
  770.  * Upon successful completion of the copy, it returns 1.
  771.  */
  772. static int
  773. copy_stringlist (fromptrs, fromlengths, toptrs, tolengths, copynum)
  774.      char *fromptrs[], *toptrs[];
  775.      int *fromlengths, *tolengths;
  776.      int copynum;
  777. {
  778.   register char
  779.     **f = fromptrs,
  780.     **t = toptrs;
  781.   register int
  782.     *fl = fromlengths,
  783.     *tl = tolengths;
  784.  
  785.   while (copynum--)
  786.     {
  787.       if (*t)
  788.     { if (*fl != *tl || bcmp (*f, *t, *fl)) return 0; }
  789.       else
  790.     { *t = *f ; *tl = *fl; }
  791.  
  792.       t++; f++; tl++; fl++;
  793.     }
  794.   return 1;
  795. }
  796.  
  797. /*
  798.  * Create a diff3_block, with ranges as specified in the arguments.
  799.  * Allocate the arrays for the various pointers (and zero them) based
  800.  * on the arguments passed.  Return the block as a result.
  801.  */
  802. static struct diff3_block *
  803. create_diff3_block (low0, high0, low1, high1, low2, high2)
  804.      register int low0, high0, low1, high1, low2, high2;
  805. {
  806.   struct diff3_block *result = ALLOCATE (1, struct diff3_block);
  807.   int numlines;
  808.  
  809.   D3_TYPE (result) = ERROR;
  810.   D_NEXT (result) = 0;
  811.  
  812.   /* Assign ranges */
  813.   D_LOWLINE (result, FILE0) = low0;
  814.   D_HIGHLINE (result, FILE0) = high0;
  815.   D_LOWLINE (result, FILE1) = low1;
  816.   D_HIGHLINE (result, FILE1) = high1;
  817.   D_LOWLINE (result, FILE2) = low2;
  818.   D_HIGHLINE (result, FILE2) = high2;
  819.  
  820.   /* Allocate and zero space */
  821.   numlines = D_NUMLINES (result, FILE0);
  822.   if (numlines)
  823.     {
  824.       D_LINEARRAY (result, FILE0) = ALLOCATE (numlines, char *);
  825.       D_LENARRAY (result, FILE0) = ALLOCATE (numlines, int);
  826.       bzero (D_LINEARRAY (result, FILE0), (numlines * sizeof (char *)));
  827.       bzero (D_LENARRAY (result, FILE0), (numlines * sizeof (int)));
  828.     }
  829.   else
  830.     {
  831.       D_LINEARRAY (result, FILE0) = (char **) 0;
  832.       D_LENARRAY (result, FILE0) = (int *) 0;
  833.     }
  834.  
  835.   numlines = D_NUMLINES (result, FILE1);
  836.   if (numlines)
  837.     {
  838.       D_LINEARRAY (result, FILE1) = ALLOCATE (numlines, char *);
  839.       D_LENARRAY (result, FILE1) = ALLOCATE (numlines, int);
  840.       bzero (D_LINEARRAY (result, FILE1), (numlines * sizeof (char *)));
  841.       bzero (D_LENARRAY (result, FILE1), (numlines * sizeof (int)));
  842.     }
  843.   else
  844.     {
  845.       D_LINEARRAY (result, FILE1) = (char **) 0;
  846.       D_LENARRAY (result, FILE1) = (int *) 0;
  847.     }
  848.  
  849.   numlines = D_NUMLINES (result, FILE2);
  850.   if (numlines)
  851.     {
  852.       D_LINEARRAY (result, FILE2) = ALLOCATE (numlines, char *);
  853.       D_LENARRAY (result, FILE2) = ALLOCATE (numlines, int);
  854.       bzero (D_LINEARRAY (result, FILE2), (numlines * sizeof (char *)));
  855.       bzero (D_LENARRAY (result, FILE2), (numlines * sizeof (int)));
  856.     }
  857.   else
  858.     {
  859.       D_LINEARRAY (result, FILE2) = (char **) 0;
  860.       D_LENARRAY (result, FILE2) = (int *) 0;
  861.     }
  862.  
  863.   /* Return */
  864.   return result;
  865. }
  866.  
  867. /*
  868.  * Compare two lists of lines of text.
  869.  * Return 1 if they are equivalent, 0 if not.
  870.  */
  871. static int
  872. compare_line_list (list1, lengths1, list2, lengths2, nl)
  873.      char *list1[], *list2[];
  874.      int *lengths1, *lengths2;
  875.      int nl;
  876. {
  877.   char
  878.     **l1 = list1,
  879.     **l2 = list2;
  880.   int
  881.     *lgths1 = lengths1,
  882.     *lgths2 = lengths2;
  883.  
  884.   while (nl--)
  885.     if (!*l1 || !*l2 || *lgths1 != *lgths2++
  886.     || bcmp (*l1++, *l2++, *lgths1++))
  887.       return 0;
  888.   return 1;
  889. }
  890.  
  891. /*
  892.  * Routines to input and parse two way diffs.
  893.  */
  894.  
  895. extern char **environ;
  896.  
  897. #define    DIFF_CHUNK_SIZE    10000
  898.  
  899. static struct diff_block *
  900. process_diff (filea, fileb)
  901.      char *filea, *fileb;
  902. {
  903.   char *diff_contents;
  904.   char *diff_limit;
  905.   char *scan_diff;
  906.   enum diff_type dt;
  907.   int i;
  908.   struct diff_block *block_list, **block_list_end, *bptr;
  909.  
  910.   diff_limit = read_diff (filea, fileb, &diff_contents);
  911.   scan_diff = diff_contents;
  912.   block_list_end = &block_list;
  913.  
  914.   while (scan_diff < diff_limit)
  915.     {
  916.       bptr = ALLOCATE (1, struct diff_block);
  917.       bptr->lines[0] = bptr->lines[1] = (char **) 0;
  918.       bptr->lengths[0] = bptr->lengths[1] = (int *) 0;
  919.  
  920.       dt = process_diff_control (&scan_diff, bptr);
  921.       if (dt == ERROR || *scan_diff != '\n')
  922.     {
  923.       fprintf (stderr, "%s: diff error: ", argv0);
  924.       do
  925.         {
  926.           putc (*scan_diff, stderr);
  927.         }
  928.       while (*scan_diff++ != '\n');
  929.       exit (2);
  930.     }
  931.       scan_diff++;
  932.  
  933.       /* Force appropriate ranges to be null, if necessary */
  934.       switch (dt)
  935.     {
  936.     case ADD:
  937.       bptr->ranges[0][0]++;
  938.       break;
  939.     case DELETE:
  940.       bptr->ranges[1][0]++;
  941.       break;
  942.     case CHANGE:
  943.       break;
  944.     default:
  945.       fatal ("internal error: invalid diff type in process_diff");
  946.       break;
  947.     }
  948.  
  949.       /* Allocate space for the pointers for the lines from filea, and
  950.      parcel them out among these pointers */
  951.       if (dt != ADD)
  952.     {
  953.       int numlines = D_NUMLINES (bptr, 0);
  954.       bptr->lines[0] = ALLOCATE (numlines, char *);
  955.       bptr->lengths[0] = ALLOCATE (numlines, int);
  956.       for (i = 0; i < numlines; i++)
  957.         scan_diff = scan_diff_line (scan_diff,
  958.                     &(bptr->lines[0][i]),
  959.                     &(bptr->lengths[0][i]),
  960.                     diff_limit,
  961.                     '<');
  962.     }
  963.  
  964.       /* Get past the separator for changes */
  965.       if (dt == CHANGE)
  966.     {
  967.       if (strncmp (scan_diff, "---\n", 4))
  968.         fatal ("invalid diff format; invalid change separator");
  969.       scan_diff += 4;
  970.     }
  971.  
  972.       /* Allocate space for the pointers for the lines from fileb, and
  973.      parcel them out among these pointers */
  974.       if (dt != DELETE)
  975.     {
  976.       int numlines = D_NUMLINES (bptr, 1);
  977.       bptr->lines[1] = ALLOCATE (numlines, char *);
  978.       bptr->lengths[1] = ALLOCATE (numlines, int);
  979.       for (i = 0; i < numlines; i++)
  980.         scan_diff = scan_diff_line (scan_diff,
  981.                     &(bptr->lines[1][i]),
  982.                     &(bptr->lengths[1][i]),
  983.                     diff_limit,
  984.                     '>');
  985.     }
  986.  
  987.       /* Place this block on the blocklist.  */
  988.       *block_list_end = bptr;
  989.       block_list_end = &bptr->next;
  990.     }
  991.  
  992.   *block_list_end = 0;
  993.   return block_list;
  994. }
  995.  
  996. /*
  997.  * This routine will parse a normal format diff control string.  It
  998.  * returns the type of the diff (ERROR if the format is bad).  All of
  999.  * the other important information is filled into to the structure
  1000.  * pointed to by db, and the string pointer (whose location is passed
  1001.  * to this routine) is updated to point beyond the end of the string
  1002.  * parsed.  Note that only the ranges in the diff_block will be set by
  1003.  * this routine.
  1004.  *
  1005.  * If some specific pair of numbers has been reduced to a single
  1006.  * number, then both corresponding numbers in the diff block are set
  1007.  * to that number.  In general these numbers are interpetted as ranges
  1008.  * inclusive, unless being used by the ADD or DELETE commands.  It is
  1009.  * assumed that these will be special cased in a superior routine.
  1010.  */
  1011.  
  1012. static enum diff_type
  1013. process_diff_control (string, db)
  1014.      char **string;
  1015.      struct diff_block *db;
  1016. {
  1017.   char *s = *string;
  1018.   int holdnum;
  1019.   enum diff_type type;
  1020.  
  1021. /* These macros are defined here because they can use variables
  1022.    defined in this function.  Don't try this at home kids, we're
  1023.    trained professionals!
  1024.  
  1025.    Also note that SKIPWHITE only recognizes tabs and spaces, and
  1026.    that READNUM can only read positive, integral numbers */
  1027.  
  1028. #define    SKIPWHITE(s)    { while (*s == ' ' || *s == '\t') s++; }
  1029. #define    READNUM(s, num)    \
  1030.     { if (!isdigit (*s)) return ERROR; holdnum = 0;    \
  1031.       do { holdnum = (*s++ - '0' + holdnum * 10); }    \
  1032.       while (isdigit (*s)); (num) = holdnum; }
  1033.  
  1034.   /* Read first set of digits */
  1035.   SKIPWHITE (s);
  1036.   READNUM (s, db->ranges[0][START]);
  1037.  
  1038.   /* Was that the only digit? */
  1039.   SKIPWHITE (s);
  1040.   if (*s == ',')
  1041.     {
  1042.       /* Get the next digit */
  1043.       s++;
  1044.       READNUM (s, db->ranges[0][END]);
  1045.     }
  1046.   else
  1047.     db->ranges[0][END] = db->ranges[0][START];
  1048.  
  1049.   /* Get the letter */
  1050.   SKIPWHITE (s);
  1051.   switch (*s)
  1052.     {
  1053.     case 'a':
  1054.       type = ADD;
  1055.       break;
  1056.     case 'c':
  1057.       type = CHANGE;
  1058.       break;
  1059.     case 'd':
  1060.       type = DELETE;
  1061.       break;
  1062.     default:
  1063.       return ERROR;            /* Bad format */
  1064.     }
  1065.   s++;                /* Past letter */
  1066.  
  1067.   /* Read second set of digits */
  1068.   SKIPWHITE (s);
  1069.   READNUM (s, db->ranges[1][START]);
  1070.  
  1071.   /* Was that the only digit? */
  1072.   SKIPWHITE (s);
  1073.   if (*s == ',')
  1074.     {
  1075.       /* Get the next digit */
  1076.       s++;
  1077.       READNUM (s, db->ranges[1][END]);
  1078.       SKIPWHITE (s);        /* To move to end */
  1079.     }
  1080.   else
  1081.     db->ranges[1][END] = db->ranges[1][START];
  1082.  
  1083.   *string = s;
  1084.   return type;
  1085. }
  1086.  
  1087. static char *
  1088. read_diff (filea, fileb, output_placement)
  1089.      char *filea, *fileb;
  1090.      char **output_placement;
  1091. {
  1092.   char *argv[6];
  1093.   char **ap;
  1094.   int fds[2];
  1095.   char *diff_result;
  1096.   int current_chunk_size;
  1097.   int bytes;
  1098.   int total;
  1099.   int pid, w;
  1100.   int wstatus;
  1101.  
  1102.   ap = argv;
  1103.   *ap++ = diff_program;
  1104.   if (always_text)
  1105.     *ap++ = "-a";
  1106.   *ap++ = "--";
  1107.   *ap++ = filea;
  1108.   *ap++ = fileb;
  1109.   *ap = (char *) 0;
  1110.  
  1111.   if (pipe (fds) < 0)
  1112.     perror_with_exit ("pipe failed");
  1113.  
  1114.   pid = vfork ();
  1115.   if (pid == 0)
  1116.     {
  1117.       /* Child */
  1118.       close (fds[0]);
  1119.       if (fds[1] != fileno (stdout))
  1120.     {
  1121.       dup2 (fds[1], fileno (stdout));
  1122.       close (fds[1]);
  1123.     }
  1124.       execve (diff_program, argv, environ);
  1125.       /* Avoid stdio, because the parent process's buffers are inherited.  */
  1126.       write (fileno (stderr), diff_program, strlen (diff_program));
  1127.       write (fileno (stderr), ": not found\n", 12);
  1128.       _exit (2);
  1129.     }
  1130.  
  1131.   if (pid == -1)
  1132.     perror_with_exit ("fork failed");
  1133.  
  1134.   close (fds[1]);        /* Prevent erroneous lack of EOF */
  1135.   current_chunk_size = DIFF_CHUNK_SIZE;
  1136.   diff_result = (char *) xmalloc (current_chunk_size);
  1137.   total = 0;
  1138.   do {
  1139.     bytes = myread (fds[0],
  1140.             diff_result + total,
  1141.             current_chunk_size - total);
  1142.     total += bytes;
  1143.     if (total == current_chunk_size)
  1144.       diff_result = (char *) xrealloc (diff_result, (current_chunk_size *= 2));
  1145.   } while (bytes);
  1146.  
  1147.   if (total != 0 && diff_result[total-1] != '\n')
  1148.     fatal ("invalid diff format; incomplete last line");
  1149.  
  1150.   *output_placement = diff_result;
  1151.  
  1152.   do
  1153.     if ((w = wait (&wstatus)) == -1)
  1154.       perror_with_exit ("wait failed");
  1155.   while (w != pid);
  1156.  
  1157.   if (! (WIFEXITED (wstatus) && WEXITSTATUS (wstatus) < 2))
  1158.     fatal ("subsidiary diff failed");
  1159.  
  1160.   return diff_result + total;
  1161. }
  1162.  
  1163.  
  1164. /*
  1165.  * Scan a regular diff line (consisting of > or <, followed by a
  1166.  * space, followed by text (including nulls) up to a newline.
  1167.  *
  1168.  * This next routine began life as a macro and many parameters in it
  1169.  * are used as call-by-reference values.
  1170.  */
  1171. static char *
  1172. scan_diff_line (scan_ptr, set_start, set_length, limit, firstchar)
  1173.      char *scan_ptr, **set_start;
  1174.      int *set_length;
  1175.      char *limit;
  1176.      char firstchar;
  1177. {
  1178.   char *line_ptr;
  1179.  
  1180.   if (!(scan_ptr[0] == (firstchar)
  1181.     && scan_ptr[1] == ' '))
  1182.     fatal ("invalid diff format; incorrect leading line chars");
  1183.  
  1184.   *set_start = line_ptr = scan_ptr + 2;
  1185.   while (*line_ptr++ != '\n')
  1186.     ;
  1187.  
  1188.   /* Include newline if the original line ended in a newline,
  1189.      or if an edit script is being generated.
  1190.      Copy any missing newline message to stderr if an edit script is being
  1191.      generated, because edit scripts cannot handle missing newlines.
  1192.      Return the beginning of the next line.  */
  1193.   *set_length = line_ptr - *set_start;
  1194.   if (line_ptr < limit && *line_ptr == '\\')
  1195.     {
  1196.       if (edscript)
  1197.     fprintf (stderr, "%s:", argv0);
  1198.       else
  1199.     --*set_length;
  1200.       line_ptr++;
  1201.       do
  1202.     {
  1203.       if (edscript)
  1204.         putc (*line_ptr, stderr);
  1205.     }
  1206.       while (*line_ptr++ != '\n');
  1207.     }
  1208.  
  1209.   return line_ptr;
  1210. }
  1211.  
  1212. /*
  1213.  * This routine outputs a three way diff passed as a list of
  1214.  * diff3_block's.
  1215.  * The argument MAPPING is indexed by external file number (in the
  1216.  * argument list) and contains the internal file number (from the
  1217.  * diff passed).  This is important because the user expects his
  1218.  * outputs in terms of the argument list number, and the diff passed
  1219.  * may have been done slightly differently (if the last argument
  1220.  * was "-", for example).
  1221.  * REV_MAPPING is the inverse of MAPPING.
  1222.  */
  1223. static void
  1224. output_diff3 (outputfile, diff, mapping, rev_mapping)
  1225.      FILE *outputfile;
  1226.      struct diff3_block *diff;
  1227.      int mapping[3], rev_mapping[3];
  1228. {
  1229.   int i;
  1230.   int oddoneout;
  1231.   char *cp;
  1232.   struct diff3_block *ptr;
  1233.   int line;
  1234.   int length;
  1235.   int dontprint;
  1236.   static int skew_increment[3] = { 2, 3, 1 }; /* 0==>2==>1==>3 */
  1237.  
  1238.   for (ptr = diff; ptr; ptr = D_NEXT (ptr))
  1239.     {
  1240.       char x[2];
  1241.  
  1242.       switch (ptr->correspond)
  1243.     {
  1244.     case DIFF_ALL:
  1245.       x[0] = '\0';
  1246.       dontprint = 3;    /* Print them all */
  1247.       oddoneout = 3;    /* Nobody's odder than anyone else */
  1248.       break;
  1249.     case DIFF_1ST:
  1250.     case DIFF_2ND:
  1251.     case DIFF_3RD:
  1252.       oddoneout = rev_mapping[(int) ptr->correspond - (int) DIFF_1ST];
  1253.  
  1254.       x[0] = oddoneout + '1';
  1255.       x[1] = '\0';
  1256.       dontprint = oddoneout==0;
  1257.       break;
  1258.     default:
  1259.       fatal ("internal error: invalid diff type passed to output");
  1260.     }
  1261.       fprintf (outputfile, "====%s\n", x);
  1262.  
  1263.       /* Go 0, 2, 1 if the first and third outputs are equivalent.  */
  1264.       for (i = 0; i < 3;
  1265.        i = (oddoneout == 1 ? skew_increment[i] : i + 1))
  1266.     {
  1267.       int realfile = mapping[i];
  1268.       int
  1269.         lowt = D_LOWLINE (ptr, realfile),
  1270.         hight = D_HIGHLINE (ptr, realfile);
  1271.  
  1272.       fprintf (outputfile, "%d:", i + 1);
  1273.       switch (lowt - hight)
  1274.         {
  1275.         case 1:
  1276.           fprintf (outputfile, "%da\n", lowt - 1);
  1277.           break;
  1278.         case 0:
  1279.           fprintf (outputfile, "%dc\n", lowt);
  1280.           break;
  1281.         default:
  1282.           fprintf (outputfile, "%d,%dc\n", lowt, hight);
  1283.           break;
  1284.         }
  1285.  
  1286.       if (i == dontprint) continue;
  1287.  
  1288.       for (line = 0; line < hight - lowt + 1; line++)
  1289.         {
  1290.           fprintf (outputfile, "  ");
  1291.           cp = D_RELNUM (ptr, realfile, line);
  1292.           length = D_RELLEN (ptr, realfile, line);
  1293.           fwrite (cp, sizeof (char), length, outputfile);
  1294.         }
  1295.       if (line != 0 && cp[length - 1] != '\n')
  1296.         fprintf (outputfile, "\n\\ No newline at end of file\n");
  1297.     }
  1298.     }
  1299. }
  1300.  
  1301.  
  1302. /*
  1303.  * Output to OUTPUTFILE the lines of B taken from FILENUM.
  1304.  * Double any initial '.'s; yield nonzero if any initial '.'s were doubled.
  1305.  */
  1306. static int
  1307. dotlines (outputfile, b, filenum)
  1308.      FILE *outputfile;
  1309.      struct diff3_block *b;
  1310.      int filenum;
  1311. {
  1312.   int i;
  1313.   int leading_dot = 0;
  1314.  
  1315.   for (i = 0;
  1316.        i < D_NUMLINES (b, filenum);
  1317.        i++)
  1318.     {
  1319.       char *line = D_RELNUM (b, filenum, i);
  1320.       if (line[0] == '.')
  1321.     {
  1322.       leading_dot = 1;
  1323.       fprintf (outputfile, ".");
  1324.     }
  1325.       fwrite (line, sizeof (char),
  1326.           D_RELLEN (b, filenum, i), outputfile);
  1327.     }
  1328.  
  1329.   return leading_dot;
  1330. }
  1331.  
  1332. /*
  1333.  * Output to OUTPUTFILE a '.' line.  If LEADING_DOT is nonzero,
  1334.  * also output a command that removes initial '.'s
  1335.  * starting with line START and continuing for NUM lines.
  1336.  */
  1337. static void
  1338. undotlines (outputfile, leading_dot, start, num)
  1339.      FILE *outputfile;
  1340.      int leading_dot, start, num;
  1341. {
  1342.   fprintf (outputfile, ".\n");
  1343.   if (leading_dot)
  1344.     if (num == 1)
  1345.       fprintf (outputfile, "%ds/^\\.//\n", start);
  1346.     else
  1347.       fprintf (outputfile, "%d,%ds/^\\.//\n", start, start + num - 1);
  1348. }
  1349.  
  1350. /*
  1351.  * This routine outputs a diff3 set of blocks as an ed script.  This
  1352.  * script applies the changes between file's 2 & 3 to file 1.  It
  1353.  * takes the precise format of the ed script to be output from global
  1354.  * variables set during options processing.  Note that it does
  1355.  * destructive things to the set of diff3 blocks it is passed; it
  1356.  * reverses their order (this gets around the problems involved with
  1357.  * changing line numbers in an ed script).
  1358.  *
  1359.  * Note that this routine has the same problem of mapping as the last
  1360.  * one did; the variable MAPPING maps from file number according to
  1361.  * the argument list to file number according to the diff passed.  All
  1362.  * files listed below are in terms of the argument list.
  1363.  * REV_MAPPING is the inverse of MAPPING.
  1364.  *
  1365.  * The arguments FILE0, FILE1 and FILE2 are the strings to print
  1366.  * as the names of the three files.  These may be the actual names,
  1367.  * or may be the arguments specified with -L.
  1368.  *
  1369.  * Returns 1 if conflicts were found.
  1370.  */
  1371.  
  1372. static int
  1373. output_diff3_edscript (outputfile, diff, mapping, rev_mapping,
  1374.                file0, file1, file2)
  1375.      FILE *outputfile;
  1376.      struct diff3_block *diff;
  1377.      int mapping[3], rev_mapping[3];
  1378.      char *file0, *file1, *file2;
  1379. {
  1380.   int leading_dot;
  1381.   int conflicts_found = 0, conflict;
  1382.   struct diff3_block *b;
  1383.  
  1384.   for (b = reverse_diff3_blocklist (diff); b; b = b->next)
  1385.     {
  1386.       /* Must do mapping correctly.  */
  1387.       enum diff_type type
  1388.     = ((b->correspond == DIFF_ALL) ?
  1389.        DIFF_ALL :
  1390.        ((enum diff_type)
  1391.         (((int) DIFF_1ST)
  1392.          + rev_mapping[(int) b->correspond - (int) DIFF_1ST])));
  1393.  
  1394.       /* If we aren't supposed to do this output block, skip it.  */
  1395.       switch (type)
  1396.     {
  1397.     default: continue;
  1398.     case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
  1399.     case DIFF_3RD: if (overlap_only) continue; conflict = 0; break;
  1400.     case DIFF_ALL: if (simple_only) continue; conflict = flagging; break;
  1401.     }
  1402.  
  1403.       if (conflict)
  1404.     {
  1405.       conflicts_found = 1;
  1406.  
  1407.  
  1408.       /* Mark end of conflict.  */
  1409.  
  1410.       fprintf (outputfile, "%da\n", D_HIGHLINE (b, mapping[FILE0]));
  1411.       leading_dot = 0;
  1412.       if (type == DIFF_ALL)
  1413.         {
  1414.           if (show_2nd)
  1415.         {
  1416.           /* Append lines from FILE1.  */
  1417.           fprintf (outputfile, "||||||| %s\n", file1);
  1418.           leading_dot = dotlines (outputfile, b, mapping[FILE1]);
  1419.         }
  1420.           /* Append lines from FILE2.  */
  1421.           fprintf (outputfile, "=======\n");
  1422.           leading_dot |= dotlines (outputfile, b, mapping[FILE2]);
  1423.         }
  1424.       fprintf (outputfile, ">>>>>>> %s\n", file2);
  1425.       undotlines (outputfile, leading_dot,
  1426.               D_HIGHLINE (b, mapping[FILE0]) + 2,
  1427.               (D_NUMLINES (b, mapping[FILE1])
  1428.                + D_NUMLINES (b, mapping[FILE2]) + 1));
  1429.  
  1430.  
  1431.       /* Mark start of conflict.  */
  1432.  
  1433.       fprintf (outputfile, "%da\n<<<<<<< %s\n",
  1434.            D_LOWLINE (b, mapping[FILE0]) - 1,
  1435.            type == DIFF_ALL ? file0 : file1);
  1436.       leading_dot = 0;
  1437.       if (type == DIFF_2ND)
  1438.         {
  1439.           /* Prepend lines from FILE1.  */
  1440.           leading_dot = dotlines (outputfile, b, mapping[FILE1]);
  1441.           fprintf (outputfile, "=======\n");
  1442.         }
  1443.       undotlines (outputfile, leading_dot,
  1444.               D_LOWLINE (b, mapping[FILE0]) + 1,
  1445.               D_NUMLINES (b, mapping[FILE1]));
  1446.     }
  1447.       else if (D_NUMLINES (b, mapping[FILE2]) == 0)
  1448.     /* Write out a delete */
  1449.     {
  1450.       if (D_NUMLINES (b, mapping[FILE0]) == 1)
  1451.         fprintf (outputfile, "%dd\n",
  1452.              D_LOWLINE (b, mapping[FILE0]));
  1453.       else
  1454.         fprintf (outputfile, "%d,%dd\n",
  1455.              D_LOWLINE (b, mapping[FILE0]),
  1456.              D_HIGHLINE (b, mapping[FILE0]));
  1457.     }
  1458.       else
  1459.     /* Write out an add or change */
  1460.     {
  1461.       switch (D_NUMLINES (b, mapping[FILE0]))
  1462.         {
  1463.         case 0:
  1464.           fprintf (outputfile, "%da\n",
  1465.                D_HIGHLINE (b, mapping[FILE0]));
  1466.           break;
  1467.         case 1:
  1468.           fprintf (outputfile, "%dc\n",
  1469.                D_HIGHLINE (b, mapping[FILE0]));
  1470.           break;
  1471.         default:
  1472.           fprintf (outputfile, "%d,%dc\n",
  1473.                D_LOWLINE (b, mapping[FILE0]),
  1474.                D_HIGHLINE (b, mapping[FILE0]));
  1475.           break;
  1476.         }
  1477.  
  1478.       undotlines (outputfile, dotlines (outputfile, b, mapping[FILE2]),
  1479.               D_LOWLINE (b, mapping[FILE0]),
  1480.               D_NUMLINES (b, mapping[FILE2]));
  1481.     }
  1482.     }
  1483.   if (finalwrite) fprintf (outputfile, "w\nq\n");
  1484.   return conflicts_found;
  1485. }
  1486.  
  1487. /*
  1488.  * Read from INFILE and output to OUTPUTFILE a set of diff3_ blocks DIFF
  1489.  * as a merged file.  This acts like 'ed file0 <[output_diff3_edscript]',
  1490.  * except that it works even for binary data or incomplete lines.
  1491.  *
  1492.  * As before, MAPPING maps from arg list file number to diff file number,
  1493.  * REV_MAPPING is its inverse,
  1494.  * and FILE0, FILE1, and FILE2 are the names of the files.
  1495.  *
  1496.  * Returns 1 if conflicts were found.
  1497.  */
  1498.  
  1499. static int
  1500. output_diff3_merge (infile, outputfile, diff, mapping, rev_mapping,
  1501.             file0, file1, file2)
  1502.      FILE *infile, *outputfile;
  1503.      struct diff3_block *diff;
  1504.      int mapping[3], rev_mapping[3];
  1505.      char *file0, *file1, *file2;
  1506. {
  1507.   int c, i;
  1508.   int conflicts_found = 0, conflict;
  1509.   struct diff3_block *b;
  1510.   int linesread = 0;
  1511.  
  1512.   for (b = diff; b; b = b->next)
  1513.     {
  1514.       /* Must do mapping correctly.  */
  1515.       enum diff_type type
  1516.     = ((b->correspond == DIFF_ALL) ?
  1517.        DIFF_ALL :
  1518.        ((enum diff_type)
  1519.         (((int) DIFF_1ST)
  1520.          + rev_mapping[(int) b->correspond - (int) DIFF_1ST])));
  1521.       char *format_2nd = "<<<<<<< %s\n";
  1522.  
  1523.       /* If we aren't supposed to do this output block, skip it.  */
  1524.       switch (type)
  1525.     {
  1526.     default: continue;
  1527.     case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
  1528.     case DIFF_3RD: if (overlap_only) continue; conflict = 0; break;
  1529.     case DIFF_ALL: if (simple_only) continue; conflict = flagging;
  1530.       format_2nd = "||||||| %s\n";
  1531.       break;
  1532.     }
  1533.  
  1534.       /* Copy I lines from file 0.  */
  1535.       i = D_LOWLINE (b, FILE0) - linesread - 1;
  1536.       linesread += i;
  1537.       while (0 <= --i)
  1538.     do
  1539.       {
  1540.         c = getc (infile);
  1541.         if (c == EOF)
  1542.           if (ferror (infile))
  1543.         perror_with_exit ("input file");
  1544.           else if (feof (infile))
  1545.         fatal ("input file shrank");
  1546.         putc (c, outputfile);
  1547.       }
  1548.     while (c != '\n');
  1549.  
  1550.       if (conflict)
  1551.     {
  1552.       conflicts_found = 1;
  1553.  
  1554.       if (type == DIFF_ALL)
  1555.         {
  1556.           /* Put in lines from FILE0 with bracket.  */
  1557.           fprintf (outputfile, "<<<<<<< %s\n", file0);
  1558.           for (i = 0;
  1559.            i < D_NUMLINES (b, mapping[FILE0]);
  1560.            i++)
  1561.         fwrite (D_RELNUM (b, mapping[FILE0], i), sizeof (char),
  1562.             D_RELLEN (b, mapping[FILE0], i), outputfile);
  1563.         }
  1564.  
  1565.       if (show_2nd)
  1566.         {
  1567.           /* Put in lines from FILE1 with bracket.  */
  1568.           fprintf (outputfile, format_2nd, file1);
  1569.           for (i = 0;
  1570.            i < D_NUMLINES (b, mapping[FILE1]);
  1571.            i++)
  1572.         fwrite (D_RELNUM (b, mapping[FILE1], i), sizeof (char),
  1573.             D_RELLEN (b, mapping[FILE1], i), outputfile);
  1574.         }
  1575.  
  1576.       fprintf (outputfile, "=======\n");
  1577.     }
  1578.  
  1579.       /* Put in lines from FILE2.  */
  1580.       for (i = 0;
  1581.        i < D_NUMLINES (b, mapping[FILE2]);
  1582.        i++)
  1583.     fwrite (D_RELNUM (b, mapping[FILE2], i), sizeof (char),
  1584.         D_RELLEN (b, mapping[FILE2], i), outputfile);
  1585.  
  1586.       if (conflict)
  1587.     fprintf (outputfile, ">>>>>>> %s\n", file2);
  1588.  
  1589.       /* Skip I lines in file 0.  */
  1590.       i = D_NUMLINES (b, FILE0);
  1591.       linesread += i;
  1592.       while (0 <= --i)
  1593.     while ((c = getc (infile)) != '\n')
  1594.       if (c == EOF)
  1595.         if (ferror (infile))
  1596.           perror_with_exit ("input file");
  1597.         else if (feof (infile))
  1598.           {
  1599.         if (i || b->next)
  1600.           fatal ("input file shrank");
  1601.         return conflicts_found;
  1602.           }
  1603.     }
  1604.   /* Copy rest of common file.  */
  1605.   while ((c = getc (infile)) != EOF || !(ferror (infile) | feof (infile)))
  1606.     putc (c, outputfile);
  1607.   return conflicts_found;
  1608. }
  1609.  
  1610. /*
  1611.  * Reverse the order of the list of diff3 blocks.
  1612.  */
  1613. static struct diff3_block *
  1614. reverse_diff3_blocklist (diff)
  1615.      struct diff3_block *diff;
  1616. {
  1617.   register struct diff3_block *tmp, *next, *prev;
  1618.  
  1619.   for (tmp = diff, prev = (struct diff3_block *) 0;
  1620.        tmp; tmp = next)
  1621.     {
  1622.       next = tmp->next;
  1623.       tmp->next = prev;
  1624.       prev = tmp;
  1625.     }
  1626.  
  1627.   return prev;
  1628. }
  1629.  
  1630. static int
  1631. myread (fd, ptr, size)
  1632.      int fd, size;
  1633.      char *ptr;
  1634. {
  1635.   int result = read (fd, ptr, size);
  1636.   if (result < 0)
  1637.     perror_with_exit ("read failed");
  1638.   return result;
  1639. }
  1640.  
  1641. VOID *
  1642. xmalloc (size)
  1643.      unsigned size;
  1644. {
  1645.   VOID *result = (VOID *) malloc (size ? size : 1);
  1646.   if (!result)
  1647.     fatal ("virtual memory exhausted");
  1648.   return result;
  1649. }
  1650.  
  1651. static VOID *
  1652. xrealloc (ptr, size)
  1653.      VOID *ptr;
  1654.      unsigned size;
  1655. {
  1656.   VOID *result = (VOID *) realloc (ptr, size ? size : 1);
  1657.   if (!result)
  1658.     fatal ("virtual memory exhausted");
  1659.   return result;
  1660. }
  1661.  
  1662. static void
  1663. fatal (string)
  1664.      char *string;
  1665. {
  1666.   fprintf (stderr, "%s: %s\n", argv0, string);
  1667.   exit (2);
  1668. }
  1669.  
  1670. static void
  1671. perror_with_exit (string)
  1672.      char *string;
  1673. {
  1674.   int e = errno;
  1675.   fprintf (stderr, "%s: ", argv0);
  1676.   errno = e;
  1677.   perror (string);
  1678.   exit (2);
  1679. }
  1680.